home *** CD-ROM | disk | FTP | other *** search
/ MacWorld Secrets (4th Edition) / Mac Secrets CD 4th Ed.toast / Apple Advanced Technologies / Apple Speech Technologies 1.5 / PlainTalk Developer Info / Speech Recognition Manager SDK / SR Sample Code / Tiny SR Example / MPW C Tiny Example / MakeFile next >
Makefile  |  1996-02-22  |  1KB  |  37 lines

  1. #   File:       MakeFile
  2. #   Target:     TinySRApp
  3. #   Sources:    TinySRApp.c
  4. #   Created:    Thursday, April 21, 1994 2:39:10 PM
  5.  
  6. # Everything takes place in this directory
  7. # You might want to move SpeechRecognitionLib to the {SharedLibraries} directory
  8. # (You will have to change PPCLink line below accordingly)
  9.  
  10. OBJECTSPPC        =    TinySRApp.c.x
  11.  
  12. TinySRApp ƒƒ {OBJECTSPPC}
  13.     PPCLink -t APPL -c TinS∂
  14.         {OBJECTSPPC} ∂
  15.         SpeechRecognitionLib ∂
  16.         "{SharedLibraries}"InterfaceLib ∂
  17.         "{SharedLibraries}"StdCLib ∂
  18.         "{PPCLibraries}"PPCCRuntime.o ∂
  19.         "{PPCLibraries}"StdCRuntime.o ∂
  20.         -fragname TinySRApp ∂
  21.         -o {Targ}
  22.  
  23. # The 68k build lines are commented out because since speech recognition requires
  24. # a powerpc to work, the 68k code would never run when SR is installed.
  25. #    OBJECTS68K        =    TinySRApp.c.o
  26. #    TinySRApp ƒƒ {OBJECTS68K}
  27. #        Link -t APPL -c TinS ∂
  28. #            {OBJECTS68K} ∂
  29. #            "{Libraries}"Interface.o ∂
  30. #            "{CLibraries}"StdCLib.o ∂
  31. #            "{Libraries}"MacRuntime.o ∂
  32. #            -o {Targ}
  33.         
  34. TinySRApp ƒƒ TinySRApp.r
  35.     Rez TinySRApp.r -o {Targ} -append
  36.  
  37.